body {
	font: .16rem PingFang SC, Microsoft YaHei, Heiti SC, Arial, SimHei, Hiragino Sans GB, Helvetica, "\5B8B\4F53", serif, sans-serif;
	line-height: 1.5;
	color: #333333;
	-webkit-font-smoothing: antialiased;
	background-color: #f6f7f8;
}
body::-webkit-scrollbar {
	width: 0;
	height: 0;
	opacity: 0;
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: none;
	-webkit-appearance: none;
	outline-style: none;
	-webkit-tap-highlight-color: transparent;
}

/* 图片处理 */
img {
	border: 0;
	vertical-align: middle;
	object-fit: cover;
}

/* 取消文字倾斜 */
em,
i,
ins{
	font-style: normal;
}

/** 去掉小圆点 **/
ul,
ol,
li {
	
	list-style: none;
}

/** a标签设置 **/
a {
	/* 去掉a标签的下划线 */
	text-decoration: none;
	/* 手机端去除a标签点击时的背景样式 */
	-webkit-tap-highlight-color: transparent;
	/* 禁用长按时弹出的菜单 */
	-webkit-touch-callout: none;
	/* 修改颜色 */
	color: #333333;
}

/** 禁用长按时弹出的菜单 **/
img {
	-webkit-touch-callout: none;
}

/** 取消外观 **/
button,
input,
textarea {
	font-family: PingFang SC, Microsoft YaHei, Heiti SC, Arial, SimHei, Hiragino Sans GB, Helvetica, "\5B8B\4F53", serif, sans-serif;
	border: 0;
	background: none;
	outline: none;
	-webkit-appearance: none;
	outline-style: none;
}

/** 禁止自定义拉伸 **/
textarea {
	resize: none;
}

/** 触手 **/
.pointer {
	cursor: pointer
}

/** 弹性布局 **/
.flex {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-none {
	flex: none;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.col-baseline {
	align-items: baseline;
}

.col-center {
	align-items: center;
}

.col-top {
	align-items: flex-start;
}

.col-bottom {
	align-items: flex-end;
}

.col-stretch {
	align-items: stretch;
}

.row-center {
	justify-content: center;
}

.row-left {
	justify-content: flex-start;
}

.row-right {
	justify-content: flex-end;
}

.row-between {
	justify-content: space-between;
}

.row-around {
	justify-content: space-around;
}

/** 内容排序方式 **/
.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

/** 清楚浮动 **/
.clearfix:after {
	visibility: hidden;
	clear: both;
	display: block;
	content: ".";
	height: 0
}

.clearfix {
	*zoom: 1
}

/** 文本行数限制 **/
.line-1 {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.line-2,
.line-3,
.line-4,
.line-5,
.line-6,
.line-7{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.line-2 {
	-webkit-line-clamp: 2;
}

.line-3 {
	-webkit-line-clamp: 3;
}

.line-4 {
	-webkit-line-clamp: 4;
}

.line-5 {
	-webkit-line-clamp: 5;
}

.line-6 {
	-webkit-line-clamp: 6;
}

.line-7 {
	-webkit-line-clamp: 7;
}

/** 页面宽度 **/
.w100 {
	width: 100%;
}

.w1200 {
	width: 12rem;
	margin: auto;
}

/** 文字颜色 **/
.color-primary {
	color: #288fff;
}

.color-white{
	color: #FFFFFF;
}

.color-black {
	color: #333333;
}

/** 背景颜色 **/
.bg-primary {
	background-color: #288fff;
}

.bg-white{
	background-color: #FFFFFF;
}

.bg-black {
	background-color: #333333;
}